/* ============================================================
   Him Herbal Healthcare — B2B Manufacturing Site
   Theme: matte black + antique gold (premium/luxury manufacturing)
   Type: Fraunces (serif display) / Lexend (UI) / Source Sans 3 (body)
   ============================================================ */

:root {
  /* Deep onyx-black scale (var names kept from the previous teal system so the UI cascades) */
  --green-900: #0A0A0A;
  /* near-black ink; also used for darkest band backgrounds */
  --green-800: #F3ECDD;
  /* ivory — card / component title text */
  --green-700: #F3ECDD;
  /* ivory — general text-on-dark default */
  --green-600: #B9872B;
  /* antique gold — gradient stops / accent dots */
  --green-500: #D4A537;
  /* gold — hover borders / accents */
  --green-100: #D4A537;
  /* gold — icon-chip circle backgrounds */
  --green-50: #100D09;
  /* subtle dark tint for zebra-striped sections */

  /* Gold accent scale */
  --gold-600: #E3B54A;
  /* gold accent — eyebrow / labels, readable on dark */
  --gold-500: #D4A537;
  /* gold accent — CTA, rings, dots */
  --gold-400: #F2CB6E;
  /* light gold — accent on dark surfaces */
  --amber-glow: rgba(212, 165, 55, .9);
  --chip-ink: #0A0A0A;
  /* dark icon-glyph color on gold chip backgrounds */

  --cream: #0A0A0A;
  /* near-black page background */
  --ink: #F3ECDD;
  /* warm ivory body / heading text */
  --ink-soft: rgba(243, 236, 221, .64);
  --line: rgba(212, 165, 55, .16);
  /* gold-tinted hairline */
  --white: #141210;
  /* warm dark card surface */

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--ink);
  --text-muted: var(--ink-soft);
  --primary: #D4A537;
  /* gold — primary CTA */
  --primary-dark: var(--ink);
  --accent: #C99A3E;

  /* Scale */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .35), 0 1px 2px rgba(0, 0, 0, .25);
  --shadow: 0 12px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 55px rgba(0, 0, 0, .55);
  --space: clamp(3.5rem, 7vw, 6rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Editorial serif display (Voyant-inspired) for large headings; Lexend keeps UI/card titles crisp */
h1,
h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h3,
h4 {
  font-family: "Lexend", sans-serif;
  line-height: 1.15;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--green-900);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .975rem;
  background: var(--btn-bg);
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.btn svg {
  transition: transform .18s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  --btn-bg: var(--primary);
  color: var(--chip-ink);
  box-shadow: 0 6px 18px rgba(212, 165, 55, .28);
}

.btn-primary:hover {
  background: #8A6419;
}

.btn-gold {
  --btn-bg: var(--gold-400);
  color: #0A0A0A;
  box-shadow: 0 6px 18px rgba(242, 203, 110, .32);
}

.btn-gold:hover {
  background: #F7DFA0;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-sm {
  padding: .6rem 1.15rem;
  font-size: .9rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Amber emphasis accents */
.text-gold {
  color: var(--gold-400);
}

.text-green {
  color: var(--gold-600);
}

.text-invert {
  color: #fff;
}

.text-invert-soft {
  color: rgba(255, 255, 255, .82);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition:
  box-shadow .25s var(--ease),
  border-color .25s var(--ease),
  background .25s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 6px 22px rgba(0, 0, 0, .35);
  border-color: rgba(242, 203, 110, .18);
  background: rgba(10, 10, 10, .96);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  font-size: 1.02rem;
  white-space: nowrap;
}

.brand-name small {
  color: var(--gold-400);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .05em;
  margin-top: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--gold-400);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .06em;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: .35rem;
}

.main-nav a {
  display: inline-block;
  padding: .5rem .8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  transition: color .15s, background .15s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.nav-cta {
  margin-left: .25rem;
}

.nav-toggle {
  display: none;
}
/* ==========================================================
MOBILE NAVIGATION
========================================================== */

.nav-toggle {
display: none;

background: transparent;
border: none;

cursor: pointer;

padding: 8px;

position: relative;
z-index: 1002;
}

.nav-toggle span {
display: block;

width: 25px;
height: 2px;

margin: 5px 0;

background: #ebdede;

border-radius: 5px;

transition:
transform 0.3s ease,
opacity 0.3s ease;
}

/* ==========================================================
TABLET + MOBILE
========================================================== */

@media (max-width: 991px) {

.site-header {
z-index: 1000;
}

.header-inner {
min-height: 70px;


gap: 12px;


}

/* Hide desktop navigation */

.main-nav {
position: fixed;


top: 0;
right: 0;

width: min(82vw, 360px);
height: 100dvh;

margin: 0;

padding: 95px 25px 30px;

background: rgba(10, 10, 10, 0.98);

border-left: 1px solid rgba(255, 255, 255, 0.08);

transform: translateX(105%);

transition: transform 0.35s ease;

z-index: 1001;

overflow-y: auto;


}

/* OPEN MENU */

.main-nav.open {
transform: translateX(0);
}

.main-nav ul {
display: flex;


flex-direction: column;

align-items: stretch;

gap: 8px;

padding: 0;
margin: 0;

list-style: none;


}

.main-nav li {
width: 100%;
}

.main-nav a {
display: block;


width: 100%;

padding: 16px 18px;

font-size: 1.05rem;

color: #ffffff;

border-radius: 8px;

transition:
  background 0.25s ease,
  color 0.25s ease;


}

.main-nav a:hover,
.main-nav a.active {
background: rgba(58, 56, 54, 0.12);


color: #f2cb6e;


}

/* Show hamburger */

.nav-toggle {
display: block;


margin-left: auto;


}

/* Hide CTA on mobile */

.nav-cta {
display: none;
}

/* Hamburger animation */

.main-nav.open ~ .nav-toggle span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.main-nav.open ~ .nav-toggle span:nth-child(2) {
opacity: 0;
}

.main-nav.open ~ .nav-toggle span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

}

/* ==========================================================
MOBILE BACKDROP
========================================================== */

.nav-backdrop {
position: fixed;

inset: 0;

background: rgba(211, 205, 205, 0.55);

opacity: 0;

transition: opacity 0.3s ease;

z-index: 999;
}

.nav-backdrop.show {
opacity: 1;
}

/* ==========================================================
SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

.main-nav {
width: 88vw;


padding:
  85px
  20px
  25px;


}

.brand-name {
font-size: 1rem;
}

.brand-name small {
font-size: 0.65rem;
}

.brand-mark {
width: 40px;
height: 40px;
}

}


/* ---------- Hero (cinematic video) ---------- */
/* .hero {
  position: relative;
  overflow: hidden;
  color: #413e3e;
}

.hero-video {
  display: grid;
  align-items: center;
  min-height: min(100vh, 900px);
  padding: clamp(2rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
} */
/* Small transparent mute / unmute button */

/* .hero.hero-video {
  position: relative;
} */

/* .video-sound-btn {
  position: absolute;
  left: 18px;
  bottom: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.35);
  color: #fff;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;
  z-index: 10;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  transition: all 0.2s ease;
}

.video-sound-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.08);
} */

/* ==========================================================
HERO VIDEO
========================================================== */

.hero {
position: relative;

overflow: hidden;

color: #413e3e;
}

.hero-video {
position: relative;

display: grid;

align-items: center;

min-height: min(100vh, 900px);

min-height: min(100svh, 900px);

padding:
clamp(2rem, 10vw, 8rem)
0
clamp(4rem, 8vw, 6rem);

isolation: isolate;
}

.hero-vid {
position: absolute;

inset: 0;

width: 100%;
height: 100%;

object-fit: cover;

object-position: center;

z-index: 0;

pointer-events: none;
}

/* Video overlay */

.hero-video-overlay {
position: absolute;

inset: 0;

background:
linear-gradient(
90deg,
rgba(0, 0, 0, 0.35),
rgba(0, 0, 0, 0.12)
);

z-index: 1;

pointer-events: none;
}

/* Any hero content */

.hero-video > .container,
.hero-video > .hero-container {
position: relative;

z-index: 2;
}

/* ==========================================================
SOUND BUTTON
========================================================== */

.video-sound-btn {
position: absolute;

left: 18px;
bottom: 18px;

width: 38px;
height: 38px;

display: flex;

align-items: center;
justify-content: center;

border: 1px solid
rgba(255, 255, 255, 0.25);

border-radius: 50%;

background:
rgba(0, 0, 0, 0.35);

color: #ffffff;

font-size: 16px;

line-height: 1;

cursor: pointer;

z-index: 10;

backdrop-filter: blur(6px);

-webkit-backdrop-filter: blur(6px);

transition:
transform 0.2s ease,
background 0.2s ease;
}

.video-sound-btn:hover {
background:
rgba(0, 0, 0, 0.6);

transform: scale(1.08);
}

/* ==========================================================
TABLET
========================================================== */

@media (max-width: 991px) {

.hero-video {
min-height: 700px;


padding: 80px 0 60px;


}

.hero-vid {
object-position: center center;
}

}

/* Fix mobile menu background */
.main-nav {
background: #0a0a0a !important;
}

/* Fix menu text visibility */
.main-nav a {
color: #ffffff !important;
}

/* Active / selected menu color */
.main-nav a.active {
color: #f2cb6e !important;
}

/* ==========================================================
MOBILE
========================================================== */

@media (max-width: 767px) {

.hero-video {
min-height: 100svh;


padding: 80px 0 60px;


}

.hero-vid {
object-position: center;


width: 100%;
height: 100%;


}

.video-sound-btn {
left: 14px;
bottom: 14px;


width: 38px;
height: 38px;


}

}

/* ==========================================================
SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

.hero-video {
min-height: 600px;
}

.video-sound-btn {
left: 12px;
bottom: 12px;


width: 36px;
height: 36px;


}

}



/* Mobile */
@media (max-width: 560px) {
  .video-sound-btn {
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

/* Gradient background for non-video heroes (e.g. portfolio page) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(212, 165, 55, .30), transparent 55%),
    radial-gradient(90% 80% at 12% 105%, rgba(242, 203, 110, .12), transparent 55%),
    linear-gradient(135deg, #0A0A0A 0%, #171310 55%, #241D12 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(85% 65% at 78% 8%, rgba(212, 165, 55, .30), transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 8, .55) 0%, rgba(8, 8, 8, .60) 45%, rgba(8, 8, 8, .82) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}

.hero-video .hero-inner {
  display: block;
}

.hero-video .hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-video .hero-actions,
.hero-video .hero-trust {
  justify-content: center;
}

.hero-video .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}

.hero-sub {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, .9);
  max-width: 60ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

.hero-trust li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}



/* Hero product-bottle illustration (CSS-only placeholder) */
.hero-visual {
  display: grid;
  place-items: center;
}

.bottle-stage {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .14), rgba(255, 255, 255, .03) 60%, transparent);
  display: grid;
  place-items: end center;
}

.bottle {
  position: absolute;
  bottom: 14%;
  border-radius: 10px 10px 6px 6px;
  box-shadow: inset 0 -18px 30px rgba(0, 0, 0, .18), 0 14px 26px rgba(0, 0, 0, .25);
}

.bottle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 26%;
  height: 16px;
  background: #111111;
  border-radius: 4px 4px 0 0;
  opacity: .85;
}

.bottle-1 {
  width: 74px;
  height: 190px;
  left: 12%;
  background: linear-gradient(180deg, #f6efe0, #d9c48c);
}

.bottle-2 {
  width: 92px;
  height: 240px;
  left: 34%;
  z-index: 3;
  background: linear-gradient(180deg, #fff3f0, #e6b7a6);
}

.bottle-3 {
  width: 80px;
  height: 205px;
  left: 58%;
  z-index: 2;
  background: linear-gradient(180deg, #eef6ef, #a9cdb0);
}

.bottle-4 {
  width: 66px;
  height: 165px;
  left: 78%;
  background: linear-gradient(180deg, #eef1f7, #b7c0d6);
}

.leaf {
  position: absolute;
  width: 70px;
  height: 70px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 29c0-8 4-12 11-13-1 8-5 12-11 13Z' fill='%23cccccc'/%3E%3C/svg%3E");
  opacity: .9;
}

.leaf-a {
  top: 6%;
  right: 6%;
  transform: rotate(20deg);
}

.leaf-b {
  bottom: 4%;
  left: 2%;
  width: 52px;
  height: 52px;
  transform: rotate(-40deg);
  opacity: .7;
}

/* =========================================================
   ABOUT SECTION — TEXT LEFT | IMAGE RIGHT
   Paste this at the END of style.css
========================================================= */

#about .about-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr) !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  align-items: center !important;
  width: 92%;
}

/* LEFT SIDE CONTENT */
#about .about-copy {
  order: 1 !important;
  width: 100%;
  min-width: 200px;
}

/* RIGHT SIDE IMAGE */
#about .about-media {
  order: 2 !important;
  width: 100%;
  min-width: 0;
  align-self: center;
}

/* KEEP IMAGE SIZE */
#about .about-media .media-card {
  width: 100%;
  height: 480px;
  min-height: 480px;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

/* IMAGE FILL */
#about .about-media .media-card img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
}

/* TABLET */
@media (max-width: 1024px) {
  #about .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr) !important;
    gap: 2.5rem !important;
  }

  #about .about-media .media-card {
    height: 440px;
    min-height: 440px;
  }
}

/* MOBILE — STACK CONTENT AND IMAGE */
@media (max-width: 860px) {
  #about .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  #about .about-copy {
    order: 1 !important;
  }

  #about .about-media {
    order: 2 !important;
  }

  #about .about-media .media-card {
    height: 400px;
    min-height: 400px;
  }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
  #about .about-media .media-card {
    height: 320px;
    min-height: 320px;
  }
}

/* ---------- Stats bar ---------- */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
}

.stat {
  padding: .5rem;
}

.stat-num {
  display: block;
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--gold-500);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: .4rem;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat+.stat {
  border-left: 1px solid var(--line);
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space) 0;
}

.section-tint {
  background: var(--green-50);
}

.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .75rem;
}

.section-eyebrow.light {
  color: var(--gold-400);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-lead {
  margin-top: .9rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .0fr 1fr;
  gap: 3rem;
  align-items: center;
}

.media-card {
  border-radius: var(--radius);
  min-height: 420px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(160deg, #241D12, #0A0A0A);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 70% 20%, rgba(255, 255, 255, .14), transparent 60%);
}

.media-dark {
  background: linear-gradient(160deg, #10302f, #0a2426);
  min-height: 380px;
}

.about-copy h2 {
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.check-list {
  margin: 1.5rem 0;
  display: grid;
  gap: .7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--green-100) no-repeat center/60% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ============================================================
   FIX: COMPANY HISTORY SECTION IMAGE ALIGNMENT
   KEEP ALL OTHER WEBSITE FUNCTIONALITY UNCHANGED
============================================================ */

/* Desktop layout */
#story .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 4rem;
  align-items: start;
  /* FIXES IMAGE DROPPING DOWN */
}


/* Move text to LEFT */
#story .about-copy {
  order: 1;
}


/* Move image to RIGHT */
#story .about-media {
  order: 2;
  width: 100%;
}


/* Fix image container */
#story .about-media .media-card {
  width: 100%;
  height: 520px;
  min-height: 520px;

  padding: 0;
  margin: 0;

  display: block;

  overflow: hidden;

  border-radius: var(--radius);

  position: relative;
}


/* Remove existing media-card overlay only for this section */
#story .about-media .media-card::before {
  display: none;
}


/* Force image to fill the complete box */
#story .about-media .media-card img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  max-width: none;

  object-fit: cover;
  object-position: center;

  margin: 0;
  padding: 0;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1024px) {

  #story .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 3rem;
  }

  #story .about-media .media-card {
    height: 480px;
    min-height: 480px;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 860px) {

  #story .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #story .about-copy {
    order: 1;
  }

  #story .about-media {
    order: 2;
  }

  #story .about-media .media-card {
    width: 100%;
    height: 450px;
    min-height: 450px;
  }

}


@media (max-width: 560px) {

  #story .about-media .media-card {
    height: 350px;
    min-height: 350px;
  }

}

/* ---------- Audience chips ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.chip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}

.chip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-500);
}

.chip-ico {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto .75rem;
  border-radius: 12px;
  background: var(--green-100);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.chip-ico[data-i="brand"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7.21 15 2.79 6 3.5-8 5-9M12 2v4M4.9 8 2 6M22 6l-2.9 2'/%3E%3C/svg%3E");
}

.chip-ico[data-i="startup"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91 0zM12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'/%3E%3C/svg%3E");
}

.chip-ico[data-i="dist"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3C/svg%3E");
}

.chip-ico[data-i="export"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.chip-ico[data-i="retail"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7 4 4h16l2 3M2 7h20M2 7v13a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7M16 11a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
}

.chip-ico[data-i="ent"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='5'/%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3C/svg%3E");
}

/* ---------- Categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green-500);
}

.cat-ico {
  width: 54px;
  height: 54px;
  margin: 0 auto .8rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-500));
  color: var(--chip-ink);
}

.cat-ico svg {
  width: 26px;
  height: 26px;
}

.cat-card h3 {
  font-size: .98rem;
  color: var(--green-800);
  font-weight: 600;
}

/* ---------- Excellence ---------- */
.excellence {
  background: linear-gradient(135deg, #0A0A0A, #171310);
}

.excellence-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.excellence-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.75rem 0 2rem;
}

.excellence-stats strong {
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: 1.8rem;
  color: var(--gold-400);
}

.excellence-stats span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--chip-ink);
  margin-bottom: 1.1rem;
}

.service-ico svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: .98rem;
}


/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(135deg, #0a0806, #140f08);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255, 255, 255, .9);
}

.contact-list svg {
  color: var(--gold-400);
  flex: none;
}

.contact-list a:hover {
  color: var(--gold-400);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500), #1f7268);
}

.form-head {
  margin-bottom: 1.5rem;
}

.form-head h3 {
  font-size: 1.35rem;
  color: var(--green-900);
}

.form-head p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .25rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
}

.contact-form {
  padding: 1.5rem 1.15rem;
}

/* Contact form stays a warm ivory card — deliberate contrast against the
   black page, so its own text stays dark ink regardless of global theme */
.contact-form {
  background: #f3e8d0;
}

.contact-form .form-head h3 {
  color: #faf9f7;
}

.contact-form .form-head p {
  color: #d6d2ca;
}

.contact-form .field-float input,
.contact-form .field-float select,
.contact-form .field-float textarea {
  background: #fffdf7;
  color: #241a0d;
  border-color: #e0cf9f;
}

.contact-form .field-float label {
  color: #7a6a48;
}

.contact-form .field-float input:focus+label,
.contact-form .field-float input:not(:placeholder-shown)+label,
.contact-form .field-float textarea:focus+label,
.contact-form .field-float textarea:not(:placeholder-shown)+label,
.contact-form .field-select select+label {
  color: var(--gold-600);
}

.contact-form::before {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--green-600));
}

/* Cert ring stays a pale ivory medallion — dark ink for its own label */
.cert-ring {
  color: #241a0d;
}

/* World map fill: warm gold instead of teal */
.pin b {
  box-shadow: 0 0 0 3px rgba(240, 200, 105, .55), 0 0 12px 2px rgba(240, 200, 105, .9);
}

.pin::after {
  background: rgba(240, 200, 105, .6);
}

/* Body base: full black canvas */
body {
  background: var(--bg);
}




/* ---------- Process (curved flow) ---------- */
.process-wrap {
  position: relative;
}

.flow-svg {
  position: absolute;
  top: calc(1rem + 4px);
  left: 0;
  width: 100%;
  height: 62px;
  z-index: 0;
  overflow: visible;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
  counter-reset: step;
  position: relative;
  z-index: 1;
  list-style: none;
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 1rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2.5px solid var(--gold-500);
  color: var(--gold-600);
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(212, 165, 55, .2);
  transition: transform .25s var(--ease), background .25s, color .25s;
}

.process-step:hover::before {
  transform: translateY(-4px) scale(1.06);
  background: var(--gold-500);
  color: #fff;
}

.process-step h3 {
  font-size: .95rem;
  color: var(--green-800);
}

.process-step p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

/* ---------- Infrastructure ---------- */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.infra-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.infra-img {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(150deg, #171310, #0A0A0A);
  position: relative;
}

.infra-img::after {
  content: attr(data-label);
}

.infra-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 10px, transparent 10px 20px);
}

.infra-card figcaption {
  padding: 1rem;
  text-align: center;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  color: var(--green-800);
  font-size: .98rem;
}

/* ---------- Certifications ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.cert-badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.cert-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.cert-ring {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  border: 3px solid var(--gold-500);
  color: var(--chip-ink);
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  background: radial-gradient(circle, var(--gold-400), var(--gold-500));
}

.cert-badge strong {
  display: block;
  font-family: "Lexend", sans-serif;
  color: var(--text);
  font-size: .95rem;
}

.cert-badge small {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ---------- Global ---------- */
.section-dark {
  background: linear-gradient(135deg, #0A0A0A, #171310);
}

.global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.global-points {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0 2rem;
}

.global-points li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.global-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  flex: none;
}

/* Masked world map (recolourable silhouette) + animated export pins */
/* ---------- World Map Pins ---------- */

.world-wrap {
  position: relative;
  width: 92%;
  aspect-ratio: 1010 / 666;
}

.world-map {
  position: absolute;
  inset: 0;

  background: linear-gradient(150deg,
      #F2CB6E 0%,
      #D4A537 55%,
      #9C7620 100%);

  -webkit-mask: url("images/Brands Personal Other/world.svg") center / contain no-repeat;
  mask: url("images/Brands Personal Other/world.svg") center / contain no-repeat;

  opacity: .92;
  filter: drop-shadow(0 8px 24px rgba(212, 165, 55, .25));
}


/* =========================
   PIN BASE
   ========================= */

.pin {
  position: absolute;

  width: 14px;
  height: 14px;

  margin: 0;

  z-index: 10;

  transform: translate(-50%, -50%);
}


/* Pin dot */

.pin b {
  position: absolute;

  left: 0;
  top: 0;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: var(--gold-400);

  box-shadow:
    0 0 0 3px rgba(242, 203, 110, .55),
    0 0 12px 2px rgba(242, 203, 110, .9);
}


/* Pin pulse */

.pin::after {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: rgba(242, 203, 110, .6);

  animation: mapPing 2.4s cubic-bezier(0, 0, .2, 1) infinite;
}


/* Label */

/* =========================
   ACTUAL MAP LOCATIONS (FINAL ADJUSTED)
   ========================= */

/* USA */
.pin-usa {
  left: 21%;
  top: 44%;
}

/* United Kingdom */
.pin-uk {
  left: 50%;
  top: 36%;
}

/* Nigeria */
.pin-nigeria {
  left: 48%;
  top: 64%;
}

/* Saudi Arabia */
.pin-saudi {
  left: 59%;
  top: 60%;
}

/* Dubai (UAE) */
.pin-dubai {
  left: 63%;
  top: 58%;
}

/* India */
.pin-india {
  left: 69.5%;
  top: 56.5%;
}

/* Sri Lanka */
.pin-srilanka {
  left: 70.5%;
  top: 66%;
}

/* Australia */
.pin-australia {
  left: 83.5%;
  top: 76.5%;
}


/* =========================
   LABEL POSITIONING & NO-OVERLAP
   ========================= */

.pin span {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, .9),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Specific Label Offsets */

/* UK: Above pin */
.pin-uk span {
  top: auto;
  bottom: 18px;
}

/* Saudi Arabia: Left of pin */
.pin-saudi span {
  left: auto;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Dubai: Above pin */
.pin-dubai span {
  left: 50%;
  top: auto;
  bottom: 18px;
  transform: translateX(-50%);
}

/* India: Right of pin */
.pin-india span {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Sri Lanka: Right of pin */
.pin-srilanka span {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
   PULSE TIMING
   ========================= */

.pin-usa::after {
  animation-delay: 0s;
}

.pin-uk::after {
  animation-delay: .5s;
}

.pin-saudi::after {
  animation-delay: 1s;
}

.pin-dubai::after {
  animation-delay: 1.5s;
}

.pin-nigeria::after {
  animation-delay: .8s;
}

.pin-india::after {
  animation-delay: 1.3s;
}

.pin-srilanka::after {
  animation-delay: 1.8s;
}

.pin-australia::after {
  animation-delay: 2s;
}


@keyframes mapPing {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  75%,
  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--chip-ink);
}

.why-ico svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: .3rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: .95rem;
}

/* ---------- Testimonials ---------- */
.quote-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-mark {
  color: var(--gold-500);
  margin: 0 auto 1rem;
  opacity: .8;
}

.quote-text {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.quote-meta {
  margin-top: 1.5rem;
}

.quote-meta strong {
  display: block;
  color: var(--green-800);
  font-family: "Lexend", sans-serif;
}

.quote-meta span {
  color: var(--text-muted);
  font-size: .95rem;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.quote-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}

.quote-dots button.active {
  background: var(--green-600);
  width: 26px;
  border-radius: 6px;
}

/* ---------- Contact ---------- */
/* ==========================================
   CONTACT SECTION LAYOUT & DARK COLOR THEME
   ========================================== */

.contact {
  background: #0d0d0d;
  color: #ffffff;
  padding: 4rem 0;
}

/* Main 2-Column Grid Setup */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  /* Left: Copy+Map | Right: Form Card */
  gap: 3rem;
  align-items: start;
}

/* --- Left Column: Copy & Details --- */
.contact-copy {
  display: flex;
  flex-direction: column;
}

.section-eyebrow.light {
  color: #d4a340;
  /* Gold eyebrow text */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-copy h2 {
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.contact-copy p {
  color: #a1a1aa;
  line-height: 1.5;
}

.contact-list {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.contact-list svg {
  color: #d4a340;
  /* Gold icons */
  flex: none;
}

.contact-list a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: #d4a340;
}

/* --- Map Resizing & Styling --- */
.contact-map {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
}

/* --- Right Column: Dark Form Card --- */
.contact-form {
  background: #141414;
  /* Dark surface background */
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gold Gradient Top Border Accent */
.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d4a340, #e6be65, #9c7620);
}

.form-head {
  margin-bottom: 1.75rem;
}

.form-head h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.form-head p {
  color: #a1a1aa;
  font-size: .92rem;
  margin-top: .35rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
}

/* Floating-Label Form Inputs (Dark Theme) */
.field-float {
  position: relative;
}

.field-float input,
.field-float select,
.field-float textarea {
  font: inherit;
  width: 100%;
  padding: 1.4rem .95rem .5rem;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  background: #1c1c1c;
  color: #ffffff;
  transition: border-color .18s, box-shadow .18s, background-color .18s;
  appearance: none;
}

.field-float textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.field-float label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #71717a;
  font-size: .95rem;
  pointer-events: none;
  transition: transform .16s ease, color .16s, font-size .16s;
  transform-origin: left top;
}

.field-float input:focus,
.field-float select:focus,
.field-float textarea:focus {
  outline: none;
  border-color: #d4a340;
  background: #222222;
  box-shadow: 0 0 0 3px rgba(212, 163, 64, 0.15);
}

.field-float input:focus+label,
.field-float input:not(:placeholder-shown)+label,
.field-float textarea:focus+label,
.field-float textarea:not(:placeholder-shown)+label,
.field-select select+label {
  transform: translateY(-.65rem) scale(.75);
  color: #d4a340;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Dropdown Custom Arrow */
.field-select {
  position: relative;
}

.field-select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-right: 2px solid #d4a340;
  border-bottom: 2px solid #d4a340;
  transform: rotate(45deg);
}

.field-select select {
  color: #ffffff;
}

.field-select select option {
  background: #1c1c1c;
  color: #ffffff;
}

/* Gold Button Styling */
.btn-primary {
  background: #d4a340;
  color: #000000;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: #e6be65;
}

.btn-primary svg {
  color: #000000;
}

.error {
  color: #f87171;
  font-size: .8rem;
  margin-top: .3rem;
  min-height: 1em;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.form-success[hidden] {
  display: none !important;
}

/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */

@media (max-width: 992px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-map {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .contact-map iframe {
    height: 240px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, .72);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: .95rem;
  max-width: 40ch;
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: .6rem;
}

.footer-col a {
  font-size: .95rem;
  transition: color .15s;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  flex-wrap: wrap;
}

/* ---------- Floating action button ---------- */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease);
}

.fab:hover {
  transform: scale(1.08);
}

/* ---------- Scroll reveal ----------
   Visible by DEFAULT so content never depends on JS. Only when the
   `.js` class is present (set immediately by an inline <head> script)
   do elements start hidden and get revealed by the IntersectionObserver. */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {

  .category-grid,
  .cert-grid,
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 2rem;
  }

  .process-step:nth-child(4)::after,
  .process-step:last-child::after {
    display: none;
  }

  .infra-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-cta {
    display: none;
  }

  /* backdrop-filter creates a containing block that traps the fixed slide-in
     panel inside the header box — drop it on mobile so the panel is viewport-fixed */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, .97);
  }

  .site-header.scrolled {
    background: #0A0A0A;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 330px);
    background: var(--surface);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg);
    padding: 5rem 1.5rem 2rem;
    margin: 0;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: .25rem;
  }

  .main-nav a {
    display: block;
    padding: .85rem 1rem;
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
  }

  .main-nav a {
    color: var(--text);
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--green-900);
    background: var(--green-100);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
  }

  .nav-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .hero-inner,
  .about-grid,
  .excellence-inner,
  .global-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-visual {
    order: -1;
  }

  .bottle-stage {
    max-width: 300px;
  }

  .about-media {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .stat+.stat {
    border-left: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stats-grid .stat:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {

  .category-grid,
  .cert-grid,
  .audience-grid,
  .infra-grid,
  .service-grid,
  .why-grid,
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none !important;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .quote-card {
    padding: 2rem 1.25rem;
  }

  .quote-text {
    font-size: 1.08rem;
  }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

/* Breadcrumb */
.crumbs {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.5rem;
}

.crumbs a:hover {
  color: var(--gold-400);
}

.crumbs span {
  color: rgba(255, 255, 255, .45);
}

.portfolio-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}

.portfolio-hero-copy {
  max-width: 720px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--green-500), var(--gold-500));
}

.tl-item {
  position: relative;
  padding: 0 0 2.25rem 4.5rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: 16px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green-600);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.tl-item:nth-child(even) .tl-dot {
  border-color: var(--gold-500);
}

.tl-year {
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  color: var(--gold-600);
  font-size: 1.1rem;
}

.tl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: .4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.tl-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.tl-card h3 {
  font-size: 1.1rem;
  margin-bottom: .25rem;
}

.tl-card p {
  color: var(--text-muted);
  font-size: .95rem;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #241D12, #0A0A0A);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .35);
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.portrait::after {
  content: attr(data-initials);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 45% at 50% 25%, rgba(255, 255, 255, .14), transparent 60%);
}

.founder-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-500));
  color: var(--chip-ink);
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.founder-copy h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.founder-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.founder-sign {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  color: var(--green-700);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 200px;
  height: 250px;
  margin: 0 auto 1rem;
  border-radius: 5%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--gold-500), #7A5C1E);
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: .15rem;
}

.team-role {
  color: var(--gold-600);
  font-weight: 600;
  font-size: .9rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: .5rem;
}

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.award-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.award-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #D4A537, #9C7620);
  color: var(--gold-600);
}

.award-ico svg {
  width: 24px;
  height: 24px;
}

.award-year {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  color: var(--gold-600);
  font-size: .8rem;
}

.award-card h3 {
  font-size: 1.02rem;
  margin: .1rem 0 .2rem;
}

.award-card p {
  color: var(--text-muted);
  font-size: .88rem;
}

/* Portfolio filter + grid */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .18s var(--ease);
}

.filter-btn:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

.filter-btn.active {
  background: var(--green-700);
  border-color: var(--gold-400);
  color: #8A6419;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pf-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.pf-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pf-thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.pf-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 10px, transparent 10px 20px);
}

.pf-cap {
  padding: .85rem 1rem;
}

.pf-cap strong {
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: .95rem;
  color: var(--green-800);
}

.pf-cap span {
  font-size: .8rem;
  color: var(--gold-600);
  font-weight: 600;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.event-img {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(150deg, #171310, #0A0A0A);
  position: relative;
}

.event-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 30% 20%, rgba(212, 175, 55, .22), transparent 60%);
}

.event-body {
  padding: 1.25rem 1.5rem;
}

.event-tag {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #141210;
  background: #D4A537;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}

.event-body h3 {
  font-size: 1.08rem;
  margin-bottom: .25rem;
}

.event-body p {
  color: var(--text-muted);
  font-size: .9rem;
}

/* Gallery tabs + grid */
.gallery-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gtab {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .18s var(--ease);
}

.gtab.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.g-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: end;
  color: #fff;
}

.g-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 12px, transparent 12px 24px);
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, .72));
}

.g-label {
  position: relative;
  z-index: 1;
  padding: .85rem;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .88rem;
}

.g-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.g-item.video .play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}

.g-item.video .play span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(17, 16, 16, 0.9);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.g-item.video .play span::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--gold-500);
  margin-left: 3px;
}

/* Press / media coverage */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.press-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.press-logo {
  flex: none;
  width: 90px;
  height: 60px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(212, 165, 55, .10);
  border: 1px solid var(--line);
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  color: var(--gold-400);
  font-size: .95rem;
  text-align: center;
  padding: .4rem;
}

.press-card p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.press-card .press-src {
  color: var(--gold-600);
  font-weight: 600;
  font-size: .85rem;
  margin-top: .35rem;
  display: block;
}

.press-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold-400);
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: gap 0.2s ease;
}

.press-card:hover .press-cta {
  gap: 10px;
}

.press-cta svg {
  flex-shrink: 0;
}

/* Success stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.story-metric {
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-600);
  line-height: 1;
}

.story-metric span {
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: .2rem;
}

.story-card h3 {
  font-size: 1.1rem;
  margin: 1rem 0 .4rem;
}

.story-card p {
  color: var(--text-muted);
  font-size: .92rem;
  flex: 1;
}

.story-brand {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--green-800);
  font-size: .9rem;
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lb-figure {
  max-width: min(880px, 92vw);
  text-align: center;
}

.lb-media {
  aspect-ratio: 16/10;
  width: min(880px, 92vw);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  background: linear-gradient(150deg, #171310, #0A0A0A);
  box-shadow: var(--shadow-lg);
}

.lb-figure figcaption {
  color: rgba(255, 255, 255, .85);
  margin-top: 1rem;
  font-family: "Lexend", sans-serif;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .18s;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, .28);
}

.lb-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lb-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Portfolio responsive */
@media (max-width: 1024px) {

  .team-grid,
  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .awards-grid,
  .events-grid,
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .founder-photo {
    max-width: 340px;
    margin: 0 auto;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .team-grid,
  .portfolio-grid,
  .gallery-grid,
  .awards-grid,
  .events-grid,
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tl-item {
    padding-left: 3.5rem;
  }

  .timeline::before {
    left: 19px;
  }

  .tl-dot {
    left: 8px;
  }

  .press-card {
    flex-direction: column;
    text-align: center;
  }

  .story-card,
  .award-card {
    padding: 1.25rem;
  }
}

@media (max-width: 420px) {

  .team-grid,
  .portfolio-grid,
  .gallery-grid,
  .awards-grid,
  .events-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GSAP FX LAYER — marquees, scroll progress, animation hooks
   ============================================================ */


/* Top scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- Marquee bands ---------- */
.marquee-band {
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  flex: none;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-right: 2.75rem;
}

.mq-item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-left: 2.75rem;
  flex: none;
}

/* Partners band: light strip under stats */
.marquee-band.partners {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.marquee-band.partners .mq-item {
  color: var(--green-800);
  opacity: .72;
}

/* Accent band: bold tilted amber keyword strip */
.marquee-band.gold {
  background: linear-gradient(90deg, #C99A3E, #F2CB6E 50%, #C99A3E);
  transform: rotate(-1.2deg) scale(1.03);
  margin-block: 1.25rem;
}

.marquee-band.gold .mq-item {
  color: #0A0A0A;
}

.marquee-band.gold .mq-item::after {
  background: #0A0A0A;
}

/* Masked world map (recolourable silhouette) + animated export pins */
.world-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1010/666;
}

.world-map {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #f0c869 0%, #c9a227 55%, #7a5a12 100%);
  -webkit-mask: url("world.svg") center/contain no-repeat;
  mask: url("world.svg") center/contain no-repeat;
  opacity: .92;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, .28));
}

/* Dark band: portfolio recognitions */
.marquee-band.dark {
  background: var(--green-900);
}

.marquee-band.dark .mq-item {
  color: rgba(255, 255, 255, .85);
}

.marquee-band.dark .mq-item::after {
  background: rgba(255, 255, 255, .6);
}

/* Journey timeline progress line (GSAP-drawn, sits over the static line) */
.tl-progress {
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold-500);
  transform-origin: top center;
  transform: scaleY(0);
  z-index: 0;
}

@media (max-width: 560px) {
  .tl-progress {
    left: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .marquee {
    overflow: hidden;
  }
}

/* ============================================================
   REAL IMAGES — fill + monochrome editorial treatment
   ============================================================ */
.ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-colour photos with a subtle zoom on hover */
.mono {
  filter: saturate(1.02);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}

.mono-card:hover .mono,
.g-item:hover .mono,
.pf-item:hover .mono,
.infra-card:hover .mono,
.event-card:hover .mono,
.press-card:hover .mono,
.team-card:hover .mono,
.about-media:hover .mono,
.mono:hover {
  transform: scale(1.05);
}

/* Hero real image */
.hero-photo {
  position: relative;
  width: min(100%, 520px);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Turn placeholder blocks into real-image frames */
.media-card.has-img,
.infra-img.has-img,
.event-img.has-img,
.pf-thumb.has-img,
.g-item.has-img,
.portrait.has-img,
.press-logo.has-img,
.team-avatar.has-img {
  background: #0A0A0A;
}

.media-card.has-img::before,
.infra-img.has-img::before,
.event-img.has-img::before,
.pf-thumb.has-img::before,
.g-item.has-img::before {
  display: none;
}

.media-card.has-img {
  color: transparent;
}

.infra-img.has-img::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .6rem;
  content: "";
}

/* Scrim + label overlay for image tiles */
.tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1rem .9rem;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  text-align: left;
}

/* Full-bleed feature strip (private label image + copy) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Logo-wall of client brands image */
.brandwall {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.brandwall img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-photo {
    max-width: 100%;
  }
}

/* Product showcase (homepage, real photos) */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.showcase-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.showcase-item .mono {
  transition: filter .55s var(--ease), transform .6s var(--ease);
}

.showcase-item:hover .mono {
  transform: scale(1.05);
}

@media (max-width: 860px) {
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
}

/* Footer logo (dark footer, white logo) */
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: .25rem;
}

.footer-addr {
  margin-top: .6rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

/* Ensure every image tile positions its .ph fill */
.has-img {
  position: relative;
  overflow: hidden;
}

.team-avatar.has-img {
  padding: 0;
}

.press-logo.has-img {
  width: 120px;
  height: 84px;
}

/* Lightbox now shows real images */
.lb-media {
  position: relative;
  overflow: hidden;
}

.lb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0A0A0A;
}

.lb-media .lb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-lg);
}

.lb-media .lb-play::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #111;
}

/* ============================================================
   HERO ENTRANCE — pure CSS, runs on load (no JS dependency)
   ============================================================ */
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.js .hero-copy>*,
.js .portfolio-hero-copy>* {
  animation: heroUp .7s var(--ease) both;
}

.js .hero-copy .eyebrow,
.js .portfolio-hero-copy .eyebrow {
  animation-delay: .06s;
}

.js .hero-copy h1,
.js .portfolio-hero-copy h1 {
  animation-delay: .16s;
}

.js .hero-copy .hero-sub,
.js .portfolio-hero-copy .hero-sub {
  animation-delay: .30s;
}

.js .hero-copy .hero-actions,
.js .portfolio-hero-copy .hero-actions {
  animation-delay: .42s;
}

.js .hero-copy .hero-trust {
  animation-delay: .54s;
}

.js .hero-photo {
  animation: heroIn .9s var(--ease) .2s both;
}

.js .crumbs {
  animation: heroUp .6s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {

  .js .hero-copy>*,
  .js .portfolio-hero-copy>*,
  .js .hero-photo,
  .js .crumbs {
    animation: none;
  }
}

/* ============================================================
   MOBILE REFINEMENTS (Round 3)
   ============================================================ */

/* Curved flow line is a desktop treatment; below 7-across, hide it */
@media (max-width: 1024px) {
  .flow-svg {
    display: none;
  }
}

/* Process becomes a clean vertical stepped list on phones */
@media (max-width: 680px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 460px;
    margin-inline: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 1.1rem;
    align-items: start;
    text-align: left;
    padding: 0 0 1.75rem;
  }

  .process-step::before {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 1.05rem;
  }

  .process-step p {
    grid-column: 2;
    grid-row: 2;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: .4rem;
    width: 2px;
    background: repeating-linear-gradient(var(--gold-500) 0 6px, transparent 6px 10px);
  }
}

/* Marquee: gentler tilt on phones */
@media (max-width: 560px) {
  .marquee-band.gold {
    transform: rotate(-.8deg);
  }

  .mq-item {
    font-size: .82rem;
    margin-right: 1.9rem;
  }

  .mq-item::after {
    margin-left: 1.9rem;
  }
}

/* World map: give it breathing room + hide on very small screens if cramped */
@media (max-width: 860px) {
  .world-wrap {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

/* Comfortable spacing + tap targets on phones */
@media (max-width: 560px) {
  :root {
    --space: clamp(2.75rem, 9vw, 3.5rem);
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero-actions .btn,
  .btn-block {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    gap: .7rem;
  }

  .contact-form {
    padding: 1.5rem 1.15rem;
  }

  .quote-card {
    padding: 1.75rem 1.15rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .35rem;
    text-align: center;
  }

  .fab {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Tap-target minimums */
.main-nav a,
.btn,
.filter-btn,
.gtab,
.quote-dots button,
.nav-toggle {
  min-height: 44px;
}

.quote-dots button {
  min-height: 24px;
}

/* ============================================================
   FULL-BLEED MANUFACTURING FILMSTRIP (Voyant-inspired reel)
   ============================================================ */
.filmstrip-section {
  padding: var(--space) 0;
  overflow: hidden;
}

.filmstrip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(1.25rem, calc((100vw - var(--container)) / 2)) .5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filmstrip::-webkit-scrollbar {
  display: none;
}

.film-item {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 340px);
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
  background: #0A0A0A;
}

.film-item img {
  transition: transform .7s var(--ease);
}

.film-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(10, 10, 10, .85));
}

.film-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.25rem;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(6px);
  opacity: .92;
  transition: transform .4s var(--ease), opacity .4s;
}

.film-item:hover img {
  transform: scale(1.06);
}

.film-item:hover figcaption {
  transform: none;
  opacity: 1;
}

.film-item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  bottom: 3.6rem;
  z-index: 2;
  width: 26px;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.film-item:hover::before {
  transform: scaleX(1);
}

@media (max-width: 560px) {
  .film-item {
    flex-basis: 78vw;
  }
}

/* ============================================================
MANUFACTURING EXCELLENCE
CONTENT LEFT | VIDEO RIGHT
KEEP EXISTING FUNCTIONALITY UNCHANGED
============================================================ */

/* Desktop Layout */
#excellence .excellence-inner {
display: grid !important;
grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr) !important;
gap: clamp(2rem, 5vw, 4rem) !important;
align-items: start !important;
width: 92%;
}

/* LEFT — Content */
#excellence .excellence-copy {
order: 1 !important;
width: 90%;
min-width: 0;
}

/* RIGHT — Video */
#excellence .excellence-media {
order: 2 !important;
width: 100%;
min-width: 0;
align-self: start !important;
}

/* Video Container */
#excellence .excellence-media .media-card {
width: 100%;
height: 520px;
min-height: 520px;

padding: 0;
margin: 0;

display: block;
position: relative;
overflow: hidden;

border-radius: var(--radius);
}

/* Remove decorative overlay only from video */
#excellence .excellence-media .media-card::before {
display: none;
}

/* Make Video Fill Container */
#excellence .excellence-media video {
display: block;

width: 100% !important;
height: 100% !important;

max-width: none !important;

object-fit: cover;
object-position: center;

margin: 0;
padding: 0;
}

/* ============================================================
TABLET
============================================================ */

@media (max-width: 1024px) {

#excellence .excellence-inner {
grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) !important;
gap: 2.5rem !important;
}

#excellence .excellence-media .media-card {
height: 480px;
min-height: 480px;
}

}

/* ============================================================
MOBILE
============================================================ */

@media (max-width: 860px) {

#excellence .excellence-inner {
grid-template-columns: 1fr !important;
gap: 2.5rem !important;
}

/* Content first */
#excellence .excellence-copy {
order: 1 !important;
}

/* Video second */
#excellence .excellence-media {
order: 2 !important;
}

#excellence .excellence-media .media-card {
width: 100%;
height: 450px;
min-height: 450px;
}

}

/* ============================================================
SMALL MOBILE
============================================================ */

@media (max-width: 560px) {

#excellence .excellence-media .media-card {
height: 320px;
min-height: 320px;
}

}



/* ============================================================
   MULTI-PAGE ARCHITECTURE + SHARED COMPONENTS
   Home | Products | Services | About Us | Contact
   ============================================================ */

/* ---------- Global page wrapper ---------- */
.page-main {
  min-height: 60vh;
}

/* ---------- Shared page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  color: #fff;
  background:
    radial-gradient(90% 100% at 85% 0%, rgba(212, 165, 55, .24), transparent 55%),
    linear-gradient(135deg, #0A0A0A 0%, #171310 55%, #241D12 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, .15) 0%,
      rgba(8, 8, 8, .42) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 68ch;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
}

/* ---------- Active global navigation ---------- */
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(212, 165, 55, .18);
  box-shadow: inset 0 -2px 0 var(--gold-400);
}

/* ---------- Shared card system ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.shared-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    border-color .22s var(--ease);
}

.shared-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 165, 55, .42);
}

/* ---------- Product cards: fixed visual dimensions ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    border-color .22s var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 165, 55, .45);
}

.product-card__image {
  flex: 0 0 235px;
  height: 235px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 165, 55, .12), transparent 65%),
    #141210;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 1.25rem;
}

.product-card__category {
  margin-bottom: .45rem;
  color: var(--gold-600);
  font-family: "Lexend", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card__title {
  min-height: 2.5em;
  margin-bottom: 0.55rem;
  font-family: "Lexend", sans-serif;
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 2; */
  overflow: hidden;
}

.product-card__description {
  min-height: 3.9em;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 3; */
}

.product-card__footer {
  margin-top: auto;
  padding-top: .75rem;
}

.product-card__footer .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Product category sections ---------- */
.product-category {
  padding: var(--space) 0;
}

.product-category+.product-category {
  border-top: 1px solid var(--line);
}

.product-category__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-category__head h2 {
  margin: 0;
}

.product-category__description {
  max-width: 60ch;
  margin-top: .65rem;
  color: var(--text-muted);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--chip-ink);
}

.service-card h3 {
  margin-bottom: .7rem;
}

.service-card p {
  color: var(--text-muted);
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- About / content page ---------- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.content-copy>p+p {
  margin-top: 1rem;
}

.content-copy p {
  color: var(--text-muted);
}

.content-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: #141210;
  box-shadow: var(--shadow);
}

.content-media img,
.content-media video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .9rem;
  align-items: start;
}

.contact-list__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--chip-ink);
}

.contact-list__item strong {
  display: block;
  margin-bottom: .15rem;
  font-family: "Lexend", sans-serif;
  font-size: .92rem;
}

.contact-list__item span,
.contact-list__item a {
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: .4rem;
}

.form-field label {
  font-family: "Lexend", sans-serif;
  font-size: .82rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem .9rem;
  background: #100D09;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 165, 55, .12);
}

/* ---------- Responsive shared components ---------- */
@media (max-width: 1100px) {

  .product-grid,
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {

  .product-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-category__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .product-grid,
  .card-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card__image {
    flex-basis: 220px;
    height: 220px;
  }

  .page-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .contact-card,
  .service-card {
    padding: 1.35rem;
  }
}